home *** CD-ROM | disk | FTP | other *** search
/ Megaware 1 / Megaware Volume 1.iso / utils / sideways / sideprnt.doc < prev    next >
Encoding:
Text File  |  1986-10-02  |  1.2 KB  |  28 lines

  1.  
  2.  
  3.                           SIDEPRNT DOCUMENTATION
  4.  
  5.  
  6. SIDEPRNT reads a text file to accumulate pages of 53 lines and prints the text
  7. sideways, 9 characters to the inch.  This process continues until the entire
  8. document has been printed.  The formfeed character (Control L) is recognized
  9. and causes a page eject, even in the middle of a line.
  10.  
  11. Each character's bit map is 8 bytes long, defining the character in an 8-by-8
  12. matrix.  Because most characters don't fill the entire matrix, space is left
  13. between displayed characters.  SIDEPRNT also adds a minuscule space between
  14. lines to improve readability.  The size of this space is controlled by the
  15. program variable BitsPerChar.
  16.  
  17.           Run SIDEPRNT from the DOS prompt by typing
  18.  
  19.               SIDEPRNT filename [/D]
  20.  
  21. where the /D switch causes each line to be printed twice to enhance the print
  22. quality.  Graphics characters above 127 are not supported.  The computer's
  23. screen font stored at F000:FA6E (possibly in different locations in
  24. compatibles) is used for the printer font.  Program comments relate how to
  25. modify the code for other modes and how to improve the program by adding your
  26. own font or changing it to work with another printer.
  27.  
  28.